400 |
How can I display only the month of the date
axTree1.Columns.Add("Date"); (axTree1.Columns.Add("Month") as EXTREELib.Column).ComputedField = "month(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem(Convert.ToDateTime("1/1/2001 10:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("2/2/2002 11:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("3/3/2003 12:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("4/4/2004 13:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); |
399 |
How can I get only the year part from a date expression
axTree1.Columns.Add("Date"); (axTree1.Columns.Add("Year") as EXTREELib.Column).ComputedField = "year(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem(Convert.ToDateTime("1/1/2001 10:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("2/2/2002 11:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("3/3/2003 12:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("4/4/2004 13:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); |
398 |
Can I convert the expression to date
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Date") as EXTREELib.Column).ComputedField = "date(dbl(%0))"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("-1.98"); var_Items.AddItem("30000.99"); var_Items.AddItem("3561.23"); var_Items.AddItem("1232.34"); |
397 |
Can I convert the expression to a number, double or float
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Number + 2") as EXTREELib.Column).ComputedField = "dbl(%0)+2"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("-1.98"); var_Items.AddItem("0.99"); var_Items.AddItem("1.23"); var_Items.AddItem("2.34"); |
396 |
How can I display dates in long format
axTree1.Columns.Add("Date"); (axTree1.Columns.Add("LongFormat") as EXTREELib.Column).ComputedField = "longdate(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem(Convert.ToDateTime("1/1/2001 10:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("2/2/2002 11:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("3/3/2003 12:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("4/4/2004 13:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); |
395 |
How can I display dates in short format
axTree1.Columns.Add("Date"); (axTree1.Columns.Add("ShortFormat") as EXTREELib.Column).ComputedField = "shortdate(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem(Convert.ToDateTime("1/1/2001 10:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("2/2/2002 11:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("3/3/2003 12:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("4/4/2004 13:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); |
394 |
How can I display the time only of a date expression
axTree1.Columns.Add("Date"); (axTree1.Columns.Add("Time") as EXTREELib.Column).ComputedField = "'time is:' + time(date(%0))"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem(Convert.ToDateTime("1/1/2001 10:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("2/2/2002 11:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("3/3/2003 12:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); var_Items.AddItem(Convert.ToDateTime("4/4/2004 13:00:00",System.Globalization.CultureInfo.GetCultureInfo("en-US"))); |
393 |
Is there any function to display currencies, or money formatted as in the control panel
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Currency") as EXTREELib.Column).ComputedField = "currency(dbl(%0))"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("1.23"); var_Items.AddItem("2.34"); var_Items.AddItem("10000.99"); |
392 |
How can I convert the expression to a string so I can look into the date string expression for month's name
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Str") as EXTREELib.Column).ComputedField = "str(%0) + ' AA'"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("-1.98"); var_Items.AddItem("0.99"); var_Items.AddItem("1.23"); var_Items.AddItem("2.34"); |
391 |
Can I display the absolute value or positive part of the number
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Abs") as EXTREELib.Column).ComputedField = "abs(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("-1.98"); var_Items.AddItem("0.99"); var_Items.AddItem("1.23"); var_Items.AddItem("2.34"); |
390 |
Is there any function to get largest number with no fraction part that is not greater than the value
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Floor") as EXTREELib.Column).ComputedField = "floor(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("-1.98"); var_Items.AddItem("0.99"); var_Items.AddItem("1.23"); var_Items.AddItem("2.34"); |
389 |
Is there any function to round the values base on the .5 value
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Round") as EXTREELib.Column).ComputedField = "round(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("-1.98"); var_Items.AddItem("0.99"); var_Items.AddItem("1.23"); var_Items.AddItem("2.34"); |
388 |
How can I get or display the integer part of the cell
axTree1.Columns.Add("Number"); (axTree1.Columns.Add("Int") as EXTREELib.Column).ComputedField = "int(%0)"; EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("-1.98"); var_Items.AddItem("0.99"); var_Items.AddItem("1.23"); var_Items.AddItem("2.34"); |
387 |
How can I display names as proper ( first leter of the word must be in uppercase, and the rest in lowercase )
(axTree1.Columns.Add("") as EXTREELib.Column).ComputedField = "proper(%0)"; EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("root"); var_Items.InsertItem(h,null,"child child"); var_Items.InsertItem(h,null,"child child"); var_Items.InsertItem(h,null,"child child"); var_Items.set_ExpandItem(h,true); |
386 |
Is there any option to display cells in uppercase
(axTree1.Columns.Add("") as EXTREELib.Column).ComputedField = "upper(%0)"; EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.InsertItem(h,null,"Chld 3"); var_Items.set_ExpandItem(h,true); |
385 |
Is there any option to display cells in lowercase
(axTree1.Columns.Add("") as EXTREELib.Column).ComputedField = "lower(%0)"; EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.InsertItem(h,null,"Chld 3"); var_Items.set_ExpandItem(h,true); |
384 |
How can I mark the cells that has a specified type, ie strings only
|
383 |
How can I bold the items that contains data or those who displays empty strings
axTree1.ConditionalFormats.Add("not len(%1)=0",null).Bold = true; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root"); var_Items.InsertItem(h,null,"Child 1"); int hC = var_Items.InsertItem(h,null,"Child 2"); var_Items.set_CellCaption(hC,1,"1"); var_Items.InsertItem(h,null,"Child 3"); var_Items.set_ExpandItem(h,true); |
382 |
Can I change the background color for items or cells that contains a specified string
axTree1.ConditionalFormats.Add("%0 contains 'hi'",null).BackColor = (uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)); axTree1.Columns.Add(""); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.InsertItem(h,null,"Chld 3"); var_Items.set_ExpandItem(h,true); |
381 |
Is there any option to change the fore color for cells or items that ends with a specified string
axTree1.ConditionalFormats.Add("%0 endwith '22'",null).ForeColor = (uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0)); axTree1.Columns.Add(""); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 1.22"); var_Items.InsertItem(h,null,"Child 2.22"); var_Items.set_ExpandItem(h,true); |
380 |
How can I highlight the cells or items that starts with a specified string
axTree1.ConditionalFormats.Add("%0 startwith 'C'",null).Underline = true; axTree1.Columns.Add(""); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.InsertItem(h,null,"SChild 3"); var_Items.set_ExpandItem(h,true); |
379 |
How can I change the background color or the visual appearance using ebn for a particular column
axTree1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); EXTREELib.Columns var_Columns = axTree1.Columns; var_Columns.Add("Column 1"); (var_Columns.Add("Column 2") as EXTREELib.Column).set_Def(EXTREELib.DefColumnEnum.exHeaderBackColor,16777216); (var_Columns.Add("Column 3") as EXTREELib.Column).set_Def(EXTREELib.DefColumnEnum.exHeaderBackColor,16777471); var_Columns.Add("Column 4"); |
378 |
How can I change the background color for a particular column
|
377 |
How can I display the column's header using multiple lines
axTree1.HeaderHeight = 128; axTree1.HeaderSingleLine = false; (axTree1.Columns.Add("This is just a column that should break the header.") as EXTREELib.Column).Width = 32; axTree1.Columns.Add("This is just another column that should break the header."); |
376 |
How can include the values in the inner cells in the drop down filter window
axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; axTree1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axTree1.set_Description(EXTREELib.DescriptionTypeEnum.exFilterBarBlanks,""); axTree1.set_Description(EXTREELib.DescriptionTypeEnum.exFilterBarNonBlanks,""); EXTREELib.Column var_Column = (axTree1.Columns.Add("Single Column") as EXTREELib.Column); var_Column.HTMLCaption = "Single column with <b>inner cells</b>"; var_Column.ToolTip = "Click the drop down filter button, and the filter list includes the inner cells values too."; var_Column.DisplayFilterButton = true; var_Column.DisplayFilterPattern = false; var_Column.FilterList = EXTREELib.FilterListEnum.exIncludeInnerCells; axTree1.ShowFocusRect = false; EXTREELib.Items var_Items = axTree1.Items; object s = var_Items.get_SplitCell(var_Items.AddItem("S 1.1"),0); var_Items.set_CellCaption(null,s,"S 1.2"); var_Items.set_CellHAlignment(null,s,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_CellBackColor(null,s,0x1000000); var_Items.set_CellWidth(null,s,84); s = var_Items.get_SplitCell(var_Items.AddItem("S 2.1"),0); var_Items.set_CellCaption(null,s,"S 2.2"); var_Items.set_CellHAlignment(null,s,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_CellWidth(null,s,84); s = var_Items.get_SplitCell(var_Items.AddItem("S 3.1"),0); var_Items.set_CellCaption(null,s,"S 3.2"); var_Items.set_CellHAlignment(null,s,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_CellBackColor(null,s,0x1000000); var_Items.set_CellWidth(null,s,84); |
375 |
How can I sort the value gets listed in the drop down filter window
axTree1.LinesAtRoot = EXTREELib.LinesAtRootEnum.exLinesAtRoot; axTree1.MarkSearchColumn = false; axTree1.set_Description(EXTREELib.DescriptionTypeEnum.exFilterBarAll,""); axTree1.set_Description(EXTREELib.DescriptionTypeEnum.exFilterBarBlanks,""); axTree1.set_Description(EXTREELib.DescriptionTypeEnum.exFilterBarNonBlanks,""); EXTREELib.Column var_Column = (axTree1.Columns.Add("P1") as EXTREELib.Column); var_Column.DisplayFilterButton = true; var_Column.DisplayFilterPattern = false; var_Column.FilterList = EXTREELib.FilterListEnum.exSortItemsDesc; EXTREELib.Column var_Column1 = (axTree1.Columns.Add("P2") as EXTREELib.Column); var_Column1.DisplayFilterButton = true; var_Column1.DisplayFilterPattern = false; var_Column1.FilterList = EXTREELib.FilterListEnum.exSortItemsAsc; EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Z3"); var_Items.set_CellCaption(h,1,"C"); var_Items.set_CellCaption(var_Items.InsertItem(h,null,"Z1"),1,"B"); var_Items.set_CellCaption(var_Items.InsertItem(h,null,"Z2"),1,"A"); var_Items.set_ExpandItem(h,true); |
374 |
How can I align the text/caption on the scroll bar
axTree1.set_ScrollPartCaption(EXTREELib.ScrollBarEnum.exHScroll,EXTREELib.ScrollPartEnum.exLowerBackPart,"left"); axTree1.set_ScrollPartCaptionAlignment(EXTREELib.ScrollBarEnum.exHScroll,EXTREELib.ScrollPartEnum.exLowerBackPart,EXTREELib.AlignmentEnum.LeftAlignment); axTree1.set_ScrollPartCaption(EXTREELib.ScrollBarEnum.exHScroll,EXTREELib.ScrollPartEnum.exUpperBackPart,"right"); axTree1.set_ScrollPartCaptionAlignment(EXTREELib.ScrollBarEnum.exHScroll,EXTREELib.ScrollPartEnum.exUpperBackPart,EXTREELib.AlignmentEnum.RightAlignment); axTree1.ColumnAutoResize = false; axTree1.Columns.Add(1.ToString()); axTree1.Columns.Add(2.ToString()); axTree1.Columns.Add(3.ToString()); axTree1.Columns.Add(4.ToString()); axTree1.Columns.Add(5.ToString()); axTree1.Columns.Add(6.ToString()); |
373 |
How do I select the next row/item
axTree1.Columns.Add("Column"); EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("Item 1"); var_Items.AddItem("Item 2"); var_Items.AddItem("Item 3"); var_Items.set_SelectItem(var_Items.get_NextVisibleItem(var_Items.FocusItem),true); |
372 |
How do I enable resizing ( changing the height ) the items at runtime
axTree1.ItemsAllowSizing = EXTREELib.ItemsAllowSizingEnum.exResizeItem; axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exHLines; axTree1.ScrollBySingleLine = true; axTree1.Columns.Add("Column"); axTree1.Items.AddItem("Item 1"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_ItemHeight(var_Items.AddItem("Item 2"),48); axTree1.Items.AddItem("Item 3"); axTree1.Items.AddItem("Item 4"); |
371 |
How do I enable resizing all the items at runtime
axTree1.ItemsAllowSizing = EXTREELib.ItemsAllowSizingEnum.exResizeAllItems; axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exHLines; axTree1.Columns.Add("Column"); axTree1.Items.AddItem("Item 1"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_ItemHeight(var_Items.AddItem("Item 2"),48); axTree1.Items.AddItem("Item 3"); |
370 |
How can I remove the filter
|
369 |
How do I change the control's border, using your EBN files
axTree1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axTree1.Appearance = (EXTREELib.AppearanceEnum)0x1000000; |
368 |
Can I change the default border of the tooltip, using your EBN files
axTree1.ToolTipDelay = 1; axTree1.ToolTipWidth = 364; axTree1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axTree1.set_Background(EXTREELib.BackgroundPartEnum.exToolTipAppearance,0x1000000); (axTree1.Columns.Add("tootip") as EXTREELib.Column).ToolTip = "this is a tooltip assigned to a column"; |
367 |
Can I change the background color for the tooltip
axTree1.ToolTipDelay = 1; axTree1.ToolTipWidth = 364; axTree1.set_Background(EXTREELib.BackgroundPartEnum.exToolTipBackColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0))); (axTree1.Columns.Add("tootip") as EXTREELib.Column).ToolTip = "this is a tooltip assigned to a column"; |
366 |
Does the tooltip support HTML format
|
365 |
Can I change the forecolor for the tooltip
axTree1.ToolTipDelay = 1; axTree1.ToolTipWidth = 364; axTree1.set_Background(EXTREELib.BackgroundPartEnum.exToolTipForeColor,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0))); (axTree1.Columns.Add("tootip") as EXTREELib.Column).ToolTip = "this is a tooltip assigned to a column"; |
364 |
Can I change the foreground color for the tooltip
|
363 |
How can I merge cells
axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exAllLines; axTree1.MarkSearchColumn = false; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); axTree1.Columns.Add("C3"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("this cell merges the first two columns"); var_Items.set_CellMerge(h,0,1); h = var_Items.AddItem(null); var_Items.set_CellCaption(h,1,"this cell merges the last two columns"); var_Items.set_CellMerge(h,1,2); h = var_Items.AddItem("this cell merges the all three columns"); var_Items.set_CellMerge(h,0,1); var_Items.set_CellMerge(h,0,2); h = var_Items.AddItem("this draws a divider item"); var_Items.set_ItemDivider(h,0); |
362 |
How can I merge cells
axTree1.MarkSearchColumn = false; axTree1.TreeColumnIndex = -1; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); h = var_Items.AddItem("This is bit of text merges all cells in the item"); var_Items.set_ItemDivider(h,0); var_Items.set_CellHAlignment(h,0,EXTREELib.AlignmentEnum.CenterAlignment); |
361 |
How can I specify the width for a splited cell
axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; axTree1.Columns.Add("Single Column"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Split 1"); object s = var_Items.get_SplitCell(h,0); var_Items.set_CellWidth(null,s,64); var_Items.set_CellCaption(null,s,"Split 2"); object s1 = var_Items.get_SplitCell(null,s); var_Items.set_CellCaption(null,s1,"Split 3"); var_Items.set_CellWidth(null,s1,64); |
360 |
How can I split a cell in three parts
axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; axTree1.Columns.Add("Single Column"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Split 1"); object s = var_Items.get_SplitCell(h,0); var_Items.set_CellCaption(null,s,"Split 2"); object s1 = var_Items.get_SplitCell(null,s); var_Items.set_CellCaption(null,s1,"Split 3"); |
359 |
How can I add a button aligned to right
axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.Columns.Add("Single Column"); axTree1.ShowFocusRect = false; EXTREELib.Items var_Items = axTree1.Items; var_Items.set_ItemDivider(var_Items.AddItem("This is a bit of text being displayed on the entire item"),0); object s = var_Items.get_SplitCell(var_Items.AddItem("Split Cell 1.1"),0); var_Items.set_CellCaption(null,s,"Split Cell <img>1</img>"); var_Items.set_CellCaptionFormat(null,s,EXTREELib.CaptionFormatEnum.exHTML); var_Items.set_CellHAlignment(null,s,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_CellHasButton(null,s,true); var_Items.set_CellWidth(null,s,84); |
358 |
How can I split a cell
axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axTree1.Columns.Add("Single Column"); axTree1.ShowFocusRect = false; EXTREELib.Items var_Items = axTree1.Items; object s = var_Items.get_SplitCell(var_Items.AddItem("Split Cell 1.1"),0); var_Items.set_CellCaption(null,s,"Split Cell <img>1</img>"); var_Items.set_CellCaptionFormat(null,s,EXTREELib.CaptionFormatEnum.exHTML); var_Items.set_CellHAlignment(null,s,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_CellBackColor(null,s,0x1000000); var_Items.set_CellWidth(null,s,84); |
357 |
Can I select an item giving its general position
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.SelectPos = 1; |
356 |
How can I change the color for separator / dividers items
axTree1.GridLineColor = Color.FromArgb(255,0,0); axTree1.MarkSearchColumn = false; axTree1.TreeColumnIndex = -1; axTree1.ScrollBySingleLine = false; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); h = var_Items.AddItem(null); var_Items.set_ItemDivider(h,0); var_Items.set_ItemDividerLine(h,EXTREELib.DividerLineEnum.DoubleDotLine); var_Items.set_ItemDividerLineAlignment(h,EXTREELib.DividerAlignmentEnum.DividerCenter); var_Items.set_ItemHeight(h,6); var_Items.set_SelectableItem(h,false); h = var_Items.AddItem("Cell 2"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); |
355 |
How can I add separator - dividers items
axTree1.MarkSearchColumn = false; axTree1.TreeColumnIndex = -1; axTree1.ScrollBySingleLine = false; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); h = var_Items.AddItem(null); var_Items.set_ItemDivider(h,0); var_Items.set_ItemDividerLine(h,EXTREELib.DividerLineEnum.DoubleDotLine); var_Items.set_ItemDividerLineAlignment(h,EXTREELib.DividerAlignmentEnum.DividerCenter); var_Items.set_ItemHeight(h,6); var_Items.set_SelectableItem(h,false); h = var_Items.AddItem("Cell 2"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); |
354 |
Can I change the style of the line being displayed by a divider item
axTree1.MarkSearchColumn = false; axTree1.TreeColumnIndex = -1; axTree1.ScrollBySingleLine = false; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); h = var_Items.AddItem("This is bit of text that's displayed on the entire item, divider."); var_Items.set_ItemDivider(h,0); var_Items.set_ItemDividerLine(h,EXTREELib.DividerLineEnum.DoubleDotLine); var_Items.set_CellHAlignment(h,0,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_ItemHeight(h,24); |
353 |
Can I remove the line being displayed by a divider item
axTree1.MarkSearchColumn = false; axTree1.TreeColumnIndex = -1; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); h = var_Items.AddItem("This is bit of text that's displayed on the entire item, divider."); var_Items.set_ItemDivider(h,0); var_Items.set_ItemDividerLine(h,EXTREELib.DividerLineEnum.EmptyLine); var_Items.set_CellHAlignment(h,0,EXTREELib.AlignmentEnum.CenterAlignment); |
352 |
How can I display a divider item, merging all cells
axTree1.MarkSearchColumn = false; axTree1.TreeColumnIndex = -1; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); h = var_Items.AddItem("This is bit of text that's displayed on the entire item, divider."); var_Items.set_ItemDivider(h,0); var_Items.set_CellHAlignment(h,0,EXTREELib.AlignmentEnum.CenterAlignment); |
351 |
How can I fix or lock items
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_LockedItemCount(EXTREELib.VAlignmentEnum.TopAlignment,1); var_Items.set_CellCaption(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.TopAlignment,0),0,"This is a locked item, fixed to the top side of the control."); var_Items.set_ItemBackColor(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.TopAlignment,0),(uint)ColorTranslator.ToWin32(Color.FromArgb(196,196,186))); var_Items.set_LockedItemCount(EXTREELib.VAlignmentEnum.BottomAlignment,2); var_Items.set_CellCaption(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.BottomAlignment,0),0,"This is a locked item, fixed to the top side of the control."); var_Items.set_ItemBackColor(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.BottomAlignment,0),(uint)ColorTranslator.ToWin32(Color.FromArgb(196,196,186))); var_Items.set_CellCaption(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.BottomAlignment,1),0,"This is a locked item, fixed to the top side of the control."); var_Items.set_ItemBackColor(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.BottomAlignment,1),(uint)ColorTranslator.ToWin32(Color.FromArgb(186,186,186))); |
350 |
How can I fix or lock an item on the bottom side of the control
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_LockedItemCount(EXTREELib.VAlignmentEnum.BottomAlignment,1); var_Items.set_CellCaption(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.BottomAlignment,0),0,"This is a locked item, fixed to the bottom side of the control."); int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); |
349 |
How can I fix or lock an item on the top of the control
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_LockedItemCount(EXTREELib.VAlignmentEnum.TopAlignment,1); var_Items.set_CellCaption(var_Items.get_LockedItem(EXTREELib.VAlignmentEnum.TopAlignment,0),0,"This is a locked item, fixed to the top side of the control."); int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); |
348 |
Is there any function to limit the height of the items when I display it using multiple lines
axTree1.ScrollBySingleLine = true; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); var_Items.set_ItemMaxHeight(h,48); |
347 |
Why I cannot center my cells in the column
axTree1.TreeColumnIndex = -1; axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; (axTree1.Columns.Add("Default") as EXTREELib.Column).Alignment = EXTREELib.AlignmentEnum.CenterAlignment; axTree1.Items.AddItem("item 1"); axTree1.Items.AddItem("item 2"); axTree1.Items.AddItem("item 3"); |
346 |
How can I align the cell to the left, center or to the right
axTree1.TreeColumnIndex = -1; axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_CellHAlignment(var_Items.AddItem("left"),0,EXTREELib.AlignmentEnum.LeftAlignment); var_Items.set_CellHAlignment(var_Items.AddItem("center"),0,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_CellHAlignment(var_Items.AddItem("right"),0,EXTREELib.AlignmentEnum.RightAlignment); |
345 |
How do I apply HTML format to a cell
axTree1.TreeColumnIndex = -1; axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif"); axTree1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif"); axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("The following item shows some of the HTML format supported:"); var_Items.set_CellHAlignment(h,0,EXTREELib.AlignmentEnum.CenterAlignment); h = var_Items.AddItem("<br>text icons <img>1</img>, <img>2</img>, ... pictures <img>p1</img>, <img>p2</img> <br><br>text <b>bold</b>, <i>italic</i>, <" + "u>underline</u>, <s>strikeout</s>, ...<br><dotline>and so on...<br> <a>anchor</a> or <a2>hyperlink</a><br><fgcolor=FF0000>fgcolo" + "r</fgcolor> or <bgcolor=00FF00>bgcolor</bgcolor> "); var_Items.set_CellCaptionFormat(h,0,EXTREELib.CaptionFormatEnum.exHTML); var_Items.set_CellSingleLine(h,0,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); |
344 |
How can I change the font for a cell
axTree1.Columns.Add("Default"); axTree1.Items.AddItem("std font"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_CellCaptionFormat(var_Items.AddItem("this <font tahoma;12>is a bit of text with</font> a different font"),0,EXTREELib.CaptionFormatEnum.exHTML); |
343 |
How can I change the font for a cell
axTree1.Columns.Add("Default"); axTree1.Items.AddItem("default font"); stdole.IFontDisp f = new stdole.StdFont() as stdole.IFontDisp; f.Name = "Tahoma"; f.Size = 12; EXTREELib.Items var_Items = axTree1.Items; var_Items.set_CellFont(var_Items.AddItem("new font"),0,(f as stdole.IFontDisp)); |
342 |
How can I change the font for entire item
axTree1.Columns.Add("Default"); axTree1.Items.AddItem("default font"); stdole.IFontDisp f = new stdole.StdFont() as stdole.IFontDisp; f.Name = "Tahoma"; f.Size = 12; EXTREELib.Items var_Items = axTree1.Items; var_Items.set_ItemFont(var_Items.AddItem("new font"),(f as stdole.IFontDisp)); |
341 |
How do I vertically align a cell
axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; (axTree1.Columns.Add("MultipleLine") as EXTREELib.Column).set_Def(EXTREELib.DefColumnEnum.exCellSingleLine,false); axTree1.Columns.Add("VAlign"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("This is a bit of long text that should break the line"); var_Items.set_CellCaption(h,1,"top"); var_Items.set_CellVAlignment(h,1,EXTREELib.VAlignmentEnum.TopAlignment); h = var_Items.AddItem("This is a bit of long text that should break the line"); var_Items.set_CellCaption(h,1,"middle"); var_Items.set_CellVAlignment(h,1,EXTREELib.VAlignmentEnum.MiddleAlignment); h = var_Items.AddItem("This is a bit of long text that should break the line"); var_Items.set_CellCaption(h,1,"bottom"); var_Items.set_CellVAlignment(h,1,EXTREELib.VAlignmentEnum.BottomAlignment); |
340 |
How can I change the position of an item
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; var_Items.AddItem("Item 1"); var_Items.AddItem("Item 2"); var_Items.set_ItemPosition(var_Items.AddItem("Item 3"),0); |
339 |
How do I find an item based on a path
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.set_ItemData(var_Items.InsertItem(h,null,"Child 2"),1234); var_Items.set_ExpandItem(h,true); var_Items.set_ItemBold(var_Items.get_FindPath("Root 1\\Child 1"),true); |
338 |
How do I find an item based on my extra data
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.set_ItemData(var_Items.InsertItem(h,null,"Child 2"),1234); var_Items.set_ExpandItem(h,true); var_Items.set_ItemBold(var_Items.get_FindItemData(1234,null),true); |
337 |
How do I find an item
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.set_ItemBold(var_Items.get_FindItem("Child 2",0,null),true); |
336 |
How can I insert a hyperlink or an anchor element
axTree1.Columns.Add("Column"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_CellCaptionFormat(var_Items.AddItem("Just an <a1>anchor</a> element ..."),0,EXTREELib.CaptionFormatEnum.exHTML); EXTREELib.Items var_Items1 = axTree1.Items; var_Items1.set_CellCaptionFormat(var_Items1.AddItem("Just another <a2>anchor</a> element ..."),0,EXTREELib.CaptionFormatEnum.exHTML); |
335 |
How do I find the index of the item based on its handle
|
334 |
How do I find the handle of the item based on its index
|
333 |
How can I find the cell being clicked in a radio group
axTree1.MarkSearchColumn = false; axTree1.SelBackColor = Color.FromArgb(255,255,128); axTree1.SelForeColor = Color.FromArgb(0,0,0); axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); axTree1.Columns.Add("C3"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Radio 1"); var_Items.set_CellHasRadioButton(h,1,true); var_Items.set_CellRadioGroup(h,1,1234); var_Items.set_CellCaption(h,2,"Radio 2"); var_Items.set_CellHasRadioButton(h,2,true); var_Items.set_CellRadioGroup(h,2,1234); var_Items.set_CellState(h,1,1); var_Items.set_CellBold(null,var_Items.get_CellChecked(1234),true); |
332 |
Can I add a +/- ( expand / collapse ) buttons to each item, so I can load the child items later
axTree1.LinesAtRoot = EXTREELib.LinesAtRootEnum.exLinesAtRoot; axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_ItemHasChildren(var_Items.AddItem("parent item with no child items"),true); var_Items.AddItem("next item"); |
331 |
Can I let the user to resize at runtime the specified item
axTree1.ScrollBySingleLine = true; axTree1.DrawGridLines = EXTREELib.GridLinesEnum.exRowLines; axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_ItemAllowSizing(var_Items.AddItem("resizable item"),true); var_Items.AddItem("not resizable item"); |
330 |
How can I change the size ( width, height ) of the picture
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.set_CellPicture(h,0,(axTree1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp)); var_Items.set_CellPictureWidth(h,0,24); var_Items.set_CellPictureHeight(h,0,24); var_Items.set_ItemHeight(h,32); h = var_Items.AddItem("Root 2"); var_Items.set_CellPicture(h,0,(axTree1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp)); var_Items.set_ItemHeight(h,48); |
329 |
How can I find the number or the count of selected items
axTree1.SingleSel = false; axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.set_SelectItem(var_Items.get_ItemChild(h),true); var_Items.set_SelectItem(var_Items.get_NextSiblingItem(var_Items.get_ItemChild(h)),true); var_Items.AddItem(var_Items.SelectCount); |
328 |
How do I unselect an item
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.set_SelectItem(h,false); |
327 |
How do I find the selected item
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.set_SelectItem(h,true); var_Items.set_ItemBold(var_Items.get_SelectedItem(0),true); |
326 |
How do I un select all items
axTree1.SingleSel = false; axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.UnselectAll(); |
325 |
How do I select multiple items
axTree1.SingleSel = false; axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.set_SelectItem(var_Items.get_ItemChild(h),true); var_Items.set_SelectItem(var_Items.get_NextSiblingItem(var_Items.get_ItemChild(h)),true); |
324 |
How do I select all items
axTree1.SingleSel = false; axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.SelectAll(); |
323 |
How do I select an item
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.set_SelectItem(h,true); |
322 |
Can I display a button with some picture or icon inside
axTree1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif"); axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1," Button <img>p1</img> "); var_Items.set_CellCaptionFormat(h,1,EXTREELib.CaptionFormatEnum.exHTML); var_Items.set_CellHAlignment(h,1,EXTREELib.AlignmentEnum.RightAlignment); var_Items.set_CellHasButton(h,1,true); var_Items.set_CellButtonAutoWidth(h,1,true); var_Items.set_ItemHeight(h,48); |
321 |
Can I display a button with some picture or icon inside
axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1," Button <img>1</img> "); var_Items.set_CellCaptionFormat(h,1,EXTREELib.CaptionFormatEnum.exHTML); var_Items.set_CellHAlignment(h,1,EXTREELib.AlignmentEnum.RightAlignment); var_Items.set_CellHasButton(h,1,true); var_Items.set_CellButtonAutoWidth(h,1,true); |
320 |
Can I display a button with some icon inside
axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1," <img>1</img> "); var_Items.set_CellCaptionFormat(h,1,EXTREELib.CaptionFormatEnum.exHTML); var_Items.set_CellHAlignment(h,1,EXTREELib.AlignmentEnum.RightAlignment); var_Items.set_CellHasButton(h,1,true); var_Items.set_CellButtonAutoWidth(h,1,true); |
319 |
How can I assign multiple icon/picture to a cell
axTree1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif"); axTree1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif"); axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("text <img>p1</img> another picture <img>p2</img> and so on"); var_Items.set_CellCaptionFormat(h,0,EXTREELib.CaptionFormatEnum.exHTML); var_Items.set_CellPicture(h,0,(axTree1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)") as stdole.IPictureDisp)); var_Items.set_ItemHeight(h,48); var_Items.AddItem("Root 2"); |
318 |
How can I assign an icon/picture to a cell
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.set_CellPicture(h,0,(axTree1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp)); var_Items.set_ItemHeight(h,48); var_Items.AddItem("Root 2"); |
317 |
How can I assign multiple icons/pictures to a cell
axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root <img>1</img> 1, <img>2</img>, ... and so on "); var_Items.set_CellCaptionFormat(h,0,EXTREELib.CaptionFormatEnum.exHTML); |
316 |
How can I assign multiple icons/pictures to a cell
axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.set_CellImages(h,0,"1,2,3"); |
315 |
How can I assign an icon/picture to a cell
axTree1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.set_CellImage(h,0,1); var_Items.set_CellImage(var_Items.InsertItem(h,null,"Child 1"),0,2); var_Items.set_CellImage(var_Items.InsertItem(h,null,"Child 2"),0,3); var_Items.set_ExpandItem(h,true); |
314 |
How can I get the handle of an item based on the handle of the cell
axTree1.Columns.Add("Default"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Root 1"); var_Items.InsertItem(h,null,"Child 1"); var_Items.InsertItem(h,null,"Child 2"); var_Items.set_ExpandItem(h,true); var_Items.set_ItemBold(var_Items.get_CellItem(var_Items.get_ItemCell(h,0)),true); |
313 |
How can I display a button inside the item or cell
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1," Button 1 "); var_Items.set_CellHAlignment(h,1,EXTREELib.AlignmentEnum.RightAlignment); var_Items.set_CellHasButton(h,1,true); var_Items.set_CellButtonAutoWidth(h,1,true); h = var_Items.AddItem("Cell 2"); var_Items.set_CellCaption(h,1," Button 2 "); var_Items.set_CellHAlignment(h,1,EXTREELib.AlignmentEnum.CenterAlignment); var_Items.set_CellHasButton(h,1,true); |
312 |
How can I change the state of a radio button
axTree1.MarkSearchColumn = false; axTree1.SelBackColor = Color.FromArgb(255,255,128); axTree1.SelForeColor = Color.FromArgb(0,0,0); axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); axTree1.Columns.Add("C3"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Radio 1"); var_Items.set_CellHasRadioButton(h,1,true); var_Items.set_CellRadioGroup(h,1,1234); var_Items.set_CellCaption(h,2,"Radio 2"); var_Items.set_CellHasRadioButton(h,2,true); var_Items.set_CellRadioGroup(h,2,1234); var_Items.set_CellState(h,1,1); |
311 |
How can I assign a radio button to a cell
axTree1.MarkSearchColumn = false; axTree1.SelBackColor = Color.FromArgb(255,255,128); axTree1.SelForeColor = Color.FromArgb(0,0,0); axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); axTree1.Columns.Add("C3"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Radio 1"); var_Items.set_CellHasRadioButton(h,1,true); var_Items.set_CellRadioGroup(h,1,1234); var_Items.set_CellCaption(h,2,"Radio 2"); var_Items.set_CellHasRadioButton(h,2,true); var_Items.set_CellRadioGroup(h,2,1234); var_Items.set_CellState(h,1,1); |
310 |
How can I change the state of a checkbox
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Check Box"); var_Items.set_CellHasCheckBox(h,1,true); var_Items.set_CellState(h,1,1); |
309 |
How can I assign a checkbox to a cell
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Check Box"); var_Items.set_CellHasCheckBox(h,1,true); |
308 |
How can I display an item or a cell on multiple lines
axTree1.ScrollBySingleLine = true; axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"This is bit of text that's shown on multiple lines"); var_Items.set_CellSingleLine(h,1,EXTREELib.CellSingleLineEnum.exCaptionWordWrap); |
307 |
How can I assign a tooltip to a cell
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"tooltip"); var_Items.set_CellToolTip(h,1,"This is bit of text that's shown when the user hovers the cell"); |
306 |
How can I associate an extra data to a cell
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Cell 2"); var_Items.set_CellData(h,1,"your extra data"); |
305 |
How do I enable or disable a cell
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Cell 2"); var_Items.set_CellEnabled(h,1,false); |
304 |
How do I change the cell's foreground color
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Cell 2"); var_Items.set_CellForeColor(h,1,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0))); |
303 |
How do I change the visual effect for the cell, using your EBN files
axTree1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Cell 2"); var_Items.set_CellBackColor(h,1,0x1000000); |
302 |
How do I change the cell's background color
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; int h = var_Items.AddItem("Cell 1"); var_Items.set_CellCaption(h,1,"Cell 2"); var_Items.set_CellBackColor(h,1,(uint)ColorTranslator.ToWin32(Color.FromArgb(255,0,0))); |
301 |
How do I change the caption or value for a particular cell
axTree1.Columns.Add("C1"); axTree1.Columns.Add("C2"); EXTREELib.Items var_Items = axTree1.Items; var_Items.set_CellCaption(var_Items.AddItem("Cell 1"),1,"Cell 2"); |